[slug].tsx 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. import type { NextPage } from "next";
  2. import Link from "next/link";
  3. import NovelCover from "../../components/NovelCover";
  4. import NovelItem from "../../components/NovelItem";
  5. import styles from "../../styles/novel-info.module.scss";
  6. const Novel: NextPage = () => {
  7. return (
  8. <main>
  9. <div
  10. className={styles["novel-wrap"]}
  11. style={{
  12. backgroundImage:
  13. "url(https://www.wuxiaworld.com/cdn-cgi/image/fit=contain,quality=75,format=auto/https://cdn.wuxiaworld.com/images/covers/og.jpg?ver=362f12103bcf1ea3fc048174300b89a65643336b)",
  14. }}
  15. >
  16. <div className={styles["novel-container"]}>
  17. <p className={styles["crumbs"]}>
  18. <Link href="/">
  19. <a title="home" className="">
  20. <svg>
  21. <use xlinkHref="/icons.svg#home"></use>
  22. </svg>
  23. </a>
  24. </Link>
  25. <span>/</span>
  26. <a href="/stories/novel-fantasy-male" className="" title="Fantasy">
  27. Fantasy
  28. </a>
  29. <span>/</span> <span>Supreme Harem God System</span>
  30. </p>
  31. <div className={styles["novel-info"]}>
  32. <NovelCover
  33. className={styles["novel-info-cover"]}
  34. component="div"
  35. />
  36. <div className={styles["nove-info-body"]}>
  37. <h1>
  38. Supreme Harem God System
  39. <small>Completed</small>
  40. </h1>
  41. <h2>
  42. <a title="Fantasy" href="/stories/novel-fantasy-male">
  43. <svg>
  44. <use xlinkHref="/icons.svg#paper"></use>
  45. </svg>
  46. <span>Fantasy</span>
  47. </a>
  48. <strong>
  49. <svg>
  50. <use xlinkHref="/icons.svg#chapter"></use>
  51. </svg>
  52. <span>438 Chapters</span>
  53. </strong>
  54. <strong>
  55. <svg>
  56. <use xlinkHref="/icons.svg#eye"></use>
  57. </svg>
  58. <span>3.9M Views</span>
  59. </strong>
  60. </h2>
  61. <div className={styles["btns"]}>
  62. <a href="" className={styles["button"]}>
  63. Start Reading
  64. </a>
  65. </div>
  66. </div>
  67. </div>
  68. </div>
  69. </div>
  70. <div className="container bg-paper py-3">
  71. <div className="tabs">
  72. <button className="tab active">About</button>
  73. <button className="tab">Chapters</button>
  74. </div>
  75. <h2 className="sub-title">Tags</h2>
  76. <div className="tags">
  77. {[
  78. "Chinese",
  79. "Romance",
  80. "Fantasy",
  81. "Comedy",
  82. "Mystery",
  83. "Xuanhuan",
  84. "Action",
  85. "Virtual Reality",
  86. "Crafting",
  87. "Modern Setting",
  88. "Superpowers",
  89. "Political Intrigue",
  90. ].map((item) => (
  91. <a href="" className="tag" key={item}>
  92. {item}
  93. </a>
  94. ))}
  95. </div>
  96. <h2 className="sub-title">Synopsis</h2>
  97. <p>The Age of Gods has long since ended, their voices no longer heard on the continent of Douluo. Humanity, standing on the shoulders of legends from its history, advanced soul technology to inconceivable heights. The humans of Douluo invented weapons of mass destruction, mechanized armor, and living metals. With these advancements, they went on to conquer the oceans and discovered two new continents. To fuel these new technologies, humanity hunted the soul beasts to the very brink of extinction. </p>
  98. <p>Once the dominant force of Douluo, the few surviving soul beasts now hide in the darkest recesses of their last sanctuary. The weakest have all been hunted, leaving only the strongest to scheme in the heart of the forest. The soul beasts, not willing to fade away, plot an uprising for their survival. In the midst of this, a god from a long forgotten era awakens in the depths of the Great Star Dou Forest to seek vengeance for the soul beasts. </p>
  99. <p>As darkness encroaches from the abyss, hope is found in a young boy who holds a power beyond divinity within himself—Tang Wulin! Hope for both humanity and the soul beasts, as the bridge between the two. He finds his way into the fabled halls of Shrek Academy, where he learns to wield his prodigious powers, makes friends and finds allies, eventually rising to become a towering leader. </p>
  100. <p>As he learns to harness his strength, danger lurks within the shadows as the various factions of humanity maneuver and plot to usurp Shrek Academy. Tang Wulin discovers the threat to the only world he knows as he sinks deeper into the intrigue. Meanwhile, camouflaged by the chaos and unbeknownst to the humans, the soul beasts’ plot continues to steadily advance.</p>
  101. <p>To defend what he loves and reclaim what was lost, Tang Wulin must seek out the legacies of legends past and unlock the full might of the Golden Dragon King!</p>
  102. </div>
  103. </main>
  104. );
  105. };
  106. export default Novel;